home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / multicsp_detect.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  58 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10418);
  10.  script_bugtraq_id(1080);
  11.  script_cve_id("CAN-2000-0109");
  12.  script_version ("$Revision: 1.10 $");
  13.  
  14.  name["english"] = "Standard & Poors detection";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote host seems to be a Standard & Poor's MultiCSP system.
  19.  
  20. These systems are known to be very insecure, and an intruder may
  21. easily break into it to use it as a launch pad for other attacks.
  22.  
  23.  
  24. Solution : protect this host by a firewall
  25. Risk factor : High";
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Detect if the remote host is a Standard & Poors' MultiCSP";
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison");
  35.  family["english"] = "General";
  36.  script_family(english:family["english"]);
  37.  script_require_ports("Services/telnet", 23);
  38.  script_dependencies("find_service.nes");
  39.  exit(0);
  40. }
  41.  
  42. #
  43. # The script code starts here
  44. #
  45. include("telnet_func.inc");
  46.  
  47. port = get_kb_item("Services/telnet");
  48. if(!port)port = 23;
  49. if (get_port_state(port))
  50. {
  51.  banner = get_telnet_banner(port: port);
  52.  if(banner)
  53.    {
  54.    if("MCSP - Standard & Poor's ComStock" >< banner)
  55.       security_hole(port:port, data:banner);
  56.    }
  57. }
  58.